net/http.http2priorityNode.next (field)

16 uses

	net/http (current package)
		h2_bundle.go#L10440: 	prev, next *http2priorityNode // doubly-linked list of siblings
		h2_bundle.go#L10453: 			parent.kids = n.next
		h2_bundle.go#L10455: 			n.prev.next = n.next
		h2_bundle.go#L10457: 		if n.next != nil {
		h2_bundle.go#L10458: 			n.next.prev = n.prev
		h2_bundle.go#L10466: 		n.next = nil
		h2_bundle.go#L10469: 		n.next = parent.kids
		h2_bundle.go#L10471: 		if n.next != nil {
		h2_bundle.go#L10472: 			n.next.prev = n
		h2_bundle.go#L10510: 	for k := n.kids.next; k != nil; k = k.next {
		h2_bundle.go#L10517: 		for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L10536: 	for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L10708: 			next := k.next
		h2_bundle.go#L10783: 	for k := n.kids; k != nil; k = k.next {